* indent.c (Fvertical_motion): Mark locals as initialized.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 14 Jul 2011 21:35:23 +0000 (14:35 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 14 Jul 2011 21:35:23 +0000 (14:35 -0700)
src/ChangeLog
src/indent.c

index 2813cc751b363cc905288b3b747b52c79ce36818..d87534a9a2c4478175df93b38a3e00488d462999 100644 (file)
@@ -1,5 +1,6 @@
 2011-07-14  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * indent.c (Fvertical_motion): Mark locals as initialized.
        * xdisp.c (reseat_to_string): Fix pointer signedness issue.
 
 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
index c36b83daa02796c037d4ddf8333350a724ee9bb4..aaeaaf591ef3b307ffba70067a357d1910564b4c 100644 (file)
@@ -1985,7 +1985,7 @@ whether or not it is currently displayed in some window.  */)
   struct text_pos pt;
   struct window *w;
   Lisp_Object old_buffer;
-  EMACS_INT old_charpos, old_bytepos;
+  EMACS_INT old_charpos IF_LINT (= 0), old_bytepos IF_LINT (= 0);
   struct gcpro gcpro1, gcpro2, gcpro3;
   Lisp_Object lcols = Qnil;
   double cols IF_LINT (= 0);